home *** CD-ROM | disk | FTP | other *** search
/ SPACE 1 / SPACE - Library 1 - Volume 1.iso / games / 223 / accent / accentst.def < prev    next >
Text File  |  1988-02-07  |  858b  |  26 lines

  1. DEFINITION MODULE AccentStrings;
  2.  
  3. (* Copyright 1987,1988 Ken Badertscher
  4.  * Permission is granted to freely use this program and source code,
  5.  * however it may NOT be used or modified for any commercial gain.
  6.  * The author disclaims responsibility for any damages resulting
  7.  * from the use or misuse of this program, and disclaims liability
  8.  * for losses of any kind or nature, financial or otherwise,
  9.  * incurred as a result of the use of this software.
  10.  *)
  11. CONST
  12.     PAGEWIDTH   = 78;
  13.  
  14. TYPE
  15.     AccentString  = ARRAY [0..PAGEWIDTH] OF CHAR;
  16.  
  17. VAR
  18.     vowel   : ARRAY [0..5] OF AccentString;
  19.     cocknie : ARRAY [0..2] OF AccentString;
  20.     nerdism : ARRAY [0..8] OF AccentString;
  21.     curse   : ARRAY [0..13] OF AccentString;
  22.     censor  : ARRAY [0..7] OF AccentString;
  23.     article : ARRAY [0..6] OF AccentString;
  24.  
  25. END AccentStrings.
  26.